.btn-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .btn-link {
      display: inline-block;
      background: #369dac;
          color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: 0.3s ease;
    }

    .btn-link:hover {
      background: #618897;
      transform: translateY(-2px);
    }